availableAppointmentDays
Days that have available appointments
GraphQL Schema
extend type query {
"""Days that have available appointments"""
availableAppointmentDays(userId: ID, startDate: Date!, endDate: Date!): [AvailableAppointmentDay!]!
}
Arguments
| Name | Type | Description |
|---|---|---|
| userId | ID | Unique ID of the user |
| startDate | Date! | |
| endDate | Date! |
Response Shape
This query returns [AvailableAppointmentDay!]!
| Name | Type | Description |
|---|---|---|
| id | ID! | Unique ID of the object |
| date | Date! |